home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1994 August / August CD.bin / Shareware / Programming / ViewIt™ 2.24 Shareware / C Demo Projects / THINK C 6.0 Demos / MinimumLC.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-05-27  |  283 b   |  15 lines  |  [TEXT/KAHL]

  1. /* Minimum LC Demonstration Program */
  2. /* ©FaceWare 1991-93.  All Rights Reserved. */
  3.  
  4. #include <string.h>
  5. #include "FaceStorLC.h"
  6. extern struct FaceRec fRec;
  7.  
  8. void main()
  9. {
  10.     strcpy(fRec.uName, "Minimum.Rsrc");
  11.     FaceIt(0,DoInit,0,0,0,0);
  12.     for (;;) {
  13.         FaceIt(0,DoLoop,0,0,0,0);
  14.         }
  15. }